home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / vfwdk.zip / VFWSDK.ZIP / SAMPLES / ICMAPP / ICMAPP.H < prev    next >
C/C++ Source or Header  |  1993-01-26  |  1KB  |  48 lines

  1. /*
  2. | icmapp.h - header file for icmapp
  3. |
  4. |
  5. |    (C) Copyright Microsoft Corp. 1991, 1992, 1993.  All rights reserved.
  6. |
  7. |    You have a royalty-free right to use, modify, reproduce and
  8. |    distribute the Sample Files (and/or any modified version) in
  9. |    any way you find useful, provided that you agree that
  10. |    Microsoft has no warranty obligations or liability for any
  11. |    Sample Application Files.
  12. |                                                                              |
  13. */
  14.  
  15. #define ABOUTBOX    1
  16.  
  17. /* Menu Items */
  18.  
  19. #define MENU_ABOUT          100
  20. #define MENU_EXIT           101
  21. #define MENU_NEW            102
  22. #define MENU_CLOSE          103
  23. #define MENU_OPEN           105
  24. #define MENU_SAVE           106
  25. #define MENU_COPY           107
  26. #define MENU_PASTE          108
  27. #define MENU_CLOSEALL       109
  28.  
  29. #define MENU_COMPRESS       201
  30. #define MENU_DECOMPRESS     202
  31.  
  32. // zoom factor is (wParam - MENU_ZOOM) / ZOOM
  33. // zoom factor == 0 means stretch to window
  34.  
  35. #define ZOOM                2
  36. #define MENU_ZOOM           4000
  37. #define MENU_ZOOMW          4000        // zoom = 0 (stretch to window)
  38. #define MENU_ZOOM12         4001        // zoom = 1/2
  39. #define MENU_ZOOM1          4002        // zoom = 1
  40. #define MENU_ZOOM2          4004        // zoom = 2
  41.  
  42. #ifdef DEBUG
  43.     extern void FAR CDECL dprintf(LPSTR, ...);
  44.     #define DPF dprintf
  45. #else
  46.     #define DPF / ## /
  47. #endif
  48.